home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_08 / 9n08010b < prev    next >
Encoding:
Text File  |  1995-11-01  |  181 b   |  9 lines

  1. /* ceil function */
  2. #include "xmath.h"
  3.  
  4. double (ceil)(double x)
  5.         {       /* compute ceil(x) */
  6.         return (_Dint(&x, 0) < 0 && 0.0 < x ? x + 1.0 : x);
  7.         }
  8.  
  9.